From: Richard M. Stallman Date: Mon, 7 Jun 1993 05:32:28 +0000 (+0000) Subject: Don't declare malloc or realloc. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~95521 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=628300ba192ba70fbb93524007646698b00bee3f;p=emacs.git Don't declare malloc or realloc. (Vinhibit_read_only): Declared. --- diff --git a/src/lisp.h b/src/lisp.h index 8efdd8daa08..66b85c7679d 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -1135,7 +1135,7 @@ extern Lisp_Object save_excursion_restore (), save_restriction_restore (); extern Lisp_Object Fchar_to_string (); /* defined in buffer.c */ -extern Lisp_Object Vbuffer_alist; +extern Lisp_Object Vbuffer_alist, Vinhibit_read_only; extern Lisp_Object Fget_buffer (), Fget_buffer_create (), Fset_buffer (); extern Lisp_Object Fbarf_if_buffer_read_only (); extern Lisp_Object Fcurrent_buffer (), Fswitch_to_buffer (), Fpop_to_buffer (); @@ -1295,7 +1295,6 @@ extern int immediate_quit; /* Nonzero means ^G can quit instantly */ extern void debugger (); -extern void *malloc (), *realloc (); extern char *getenv (), *ctime (), *getwd (); extern long *xmalloc (), *xrealloc (); extern void xfree ();